home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / telecomm / fnordadl / fn132src.zoo / cith / zaploop.h < prev   
C/C++ Source or Header  |  1991-09-02  |  736b  |  28 lines

  1. /*
  2.  * zaploop.h: structures used by the loop zapper
  3.  *
  4.  * 91Jan03 AA    Added lxname, lxlastid and lxgen.  Changed lxlast to time_t.
  5.  */
  6.  
  7. #ifndef _ZAPLOOP_H
  8. #define _ZAPLOOP_H
  9.  
  10. struct zaploop {
  11.     LABEL  lxaddr;    /* node id for the offending system        */
  12.     LABEL  lxname;    /* node name (for convenience)            */
  13.     time_t lxlast;    /* date of newest message here            */
  14.     long   lxlastid;    /* message id of newest message here, if avail    */
  15.     short  lxroom;    /* room on our system for this message        */
  16.     unsigned short lxgen; /* gen # of room                */
  17.     short  lxchain;    /* hash chain for next room            */
  18. } ;
  19.  
  20. struct zaphash {
  21.     short zhash;    /* hash of the node ID for the system        */
  22.     short zbucket;
  23. } ;
  24.  
  25. extern struct zaphash *zap;
  26.  
  27. #endif
  28.